WelcomePage.tsx ➔ WelcomePage   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 10
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 10
dl 0
loc 10
rs 9.9
c 0
b 0
f 0
cc 1
1
import React from "react";
2
3
function WelcomePage() {
4
  return (
5
    <React.Fragment>
6
      <h1>Welcome!</h1>
7
      <p>
8
        You can upload, view and share your images and videos using this website,
9
        its source code and more details are available <a href="https://github.com/przemo199/replayer">here</a>
10
      </p>
11
    </React.Fragment>
12
  );
13
}
14
15
export default WelcomePage;
16